home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / os2 / adaptor.zip / ADAPT.ZIP / adaptor / src / include / tempscal.h < prev    next >
C/C++ Source or Header  |  1994-01-03  |  578b  |  27 lines

  1. # ifndef yyTempScalars
  2. # define yyTempScalars
  3.  
  4. # if defined __STDC__ | defined __cplusplus
  5. # define ARGS(parameters)    parameters
  6. # else
  7. # define ARGS(parameters)    ()
  8. # endif
  9.  
  10. # ifndef bool
  11. # define bool char
  12. # endif
  13.  
  14. # include "Tree.h"
  15. # include "Definiti.h"
  16.  
  17.  
  18. extern void TempScalarsInitBody ARGS((tTree t));
  19. extern tTree ExtractScalarMovements ARGS((tTree exp, tTree * new_assigns));
  20. extern tTree MakeNewLoopVar ARGS((int n));
  21. extern void TempScalarsDoneBody ARGS((tTree t));
  22.  
  23. extern void BeginTempScalars ();
  24. extern void CloseTempScalars ();
  25.  
  26. # endif
  27.